home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 January / PSL Monthly Shareware CD-ROM (Public Software Library) (January 1994).iso / reviews / u2_04 < prev    next >
Text File  |  1993-11-10  |  56KB  |  1,430 lines

  1. U2-04:  Operating System Utilities
  2.  
  3.  
  4. ------------------------
  5. 1346 DOS Command Editors          Small Programs Disk
  6. ------------------------
  7.  
  8. For an understanding of what DOS Command Editors do, read the CED writeup
  9. first. CED (and the others) are similar in some ways to key macro programs and
  10. "shorthand" utilities which allow you to type in just part of a word and the
  11. computer fills in the rest. For more on these utilities, see the Keyboard
  12. section.
  13.  
  14. Note: Many BBS's and libraries still carry DOS-EDIT even though it is a
  15. pirated program and not public domain. DOS-EDIT was sold by IBM in its
  16. Personally Developed Software series under the name RETRIEVE. Besides DOS-EDIT
  17. not being public domain, CED is much better anyway. To further confuse things,
  18. PC Magazine also came out with a similar utility with the name DOSEDIT. CED is
  19. still better.
  20.  
  21. Command EDitor (CED)
  22.    Dunford, Christopher J.
  23.    $0
  24. is a TSR that improves command line editing in DOS, lets you scroll back
  25. through previous commands to edit and/or re-execute them, lets you create the
  26. equivalent of in-memory batch files,
  27.  
  28.      -command scrolling:  you can use the up and down cursor keys to scroll
  29. back through previously entered commands in DOS.  If you are doing repetitive
  30. tasks while in DOS, this keeps you from having to retype the same lines over
  31. and over.
  32.  
  33.      -use of the cursor keys: now if you make a mistake while typing in DOS,
  34. you can use the cursor keys to go back and correct it instead of having to
  35. erase what you have already typed.  This feature combines nicely with command
  36. scrolling.  For example, if you want copy the file DATABASE from drive C:  to
  37. drive A:  and then to drive B:, at the C> prompt you would enter COPY DATABASE
  38. A:  and when it was done, press the up cursor.  This redisplays the last
  39. command and leaves the cursor at the end of the command so that all you have
  40. to do is press the left cursor key twice change the A to B and press Enter.
  41.  
  42.      -recall of program parameters (PCALL): after you have run a program once,
  43. the next time you call the program, CED will insert the same parameters for
  44. you. For example, if you enter
  45.  
  46.          link myprog+module1+module2+module3+module4+module5+module6
  47.  
  48. the next time you run LINK, all the rest of the line will be entered for you
  49. automatically.
  50.  
  51.      -synonyms:  have you ever typed in DUR or DRI instead of DIR? No sweat.
  52. Just tell CED that when it sees those popular typo's, to treat them as DIR.
  53. DOS-Edit referred to these as Aliases.
  54.  
  55.      A simple CED synonym definition is set up like this:  CED SYN DUR DIR.
  56. This tells CED that if you type in DUR, to substitute the word DIR in its
  57. place before passing it along to DOS to act on.  Nice, but where the power of
  58. synonyms comes into play is that you can use variables the way you would in
  59. batch files, and you can chain a series of commands to be assigned to one
  60. synonym.  Example:
  61.  
  62.                    CED SYN EDIT CD \WP^WS %1^COPY %1 A:^CD\
  63.  
  64.      Now if you enter EDIT LETTER.TXT, the current directory will be changed
  65. to WP, your word processing subdirectory, WordStar will be called and told to
  66. edit the file LETTER.TXT.  When you finally exit WS, the file LETTER.TXT will
  67. be copied to a backup disk in drive A:, and you will be returned to the root
  68. directory again.
  69.  
  70.      -MANY OF YOUR BATCH FILES ARE NO LONGER NEEDED. On a hard disk, a small
  71. batch file to do the job that the synonym above is doing would take up the
  72. drive's minimum allocation of space, which may be as much as 8,000 characters.
  73. If you have many of these little batch files, they can use up and enormous
  74. amount of disk space.  Now you can make them into synonyms and free up that
  75. disk space.
  76.  
  77.      -SYNONYMS RESIDE IN MEMORY and execute at RAM speed instead of disk
  78. speed.  If you have a floppy based system, you no longer have to switch disks
  79. to use a batch file, and the speed increase is remarkable.
  80.  
  81. Cedsyn 1.02
  82.    Modak, Anand
  83.    $?
  84. creates CED Synonyms for changing directories.  (See write-up of CED, above.)
  85. CEDSYN reads your hard disk and creates a SYN of a "2" followed by the
  86. directory name for each directory.  Then when you want to change directories
  87. (say, for example, to C:\WP\LET), you would just enter "2LET" and the CED SYN
  88. will execute the command CD\WP\LET.  After CEDSYN has added the synonyms to
  89. your CED file, it does not have to be run again.
  90.  
  91. AI 2.1
  92.    Toft, George
  93.    $24
  94. is an artificially intelligent command line interface that corrects your typing
  95. errors in DOS by learning what you really meant based on your previous mistakes
  96. and corrections. It also allows the use of cursor keys on the DOS command line.
  97.  
  98. CShell
  99.    is a COMMAND.COM replacement.  It implements unix-like shell commands such
  100. as ls, mv, fgrep, rm, chdir, chmod,etc.  It also allows recalling and editing
  101. previous commands.
  102.  
  103. DOSinp 1.0
  104.    Mercie, Kenneth J.
  105.    $10
  106. is another one of those memory resident programs that provide DOS command line
  107. editing.  Along with the editing features, DOSINP will let you recall the
  108. previous 20 command line entries; display a window with the available previous
  109. commands; delete unwanted commands from the command window; program the 10
  110. Function keys; flush the typeahead keyboard buffer, at any time; remove TSR's
  111. from memory.  At only 8k of DOS RAM used for DOSINP, this is a very attractive
  112. alternative to similar utilities.  (res:8k)
  113.  
  114. Edicom-12 (EDC)
  115.    Edicom Systems
  116.    $26
  117. is a DOS command processor and more.  It will recall up to 12 previous
  118. commands entered in DOS for easy changing and re-execution.  It lets you
  119. execute commands with a single keystroke, find files, page through text files,
  120. and prevent accidental overwriting of files - all without slowing you down
  121. while working in DOS.
  122.  
  123. History
  124.    Rubenstein, Michael M.
  125.    $?
  126. is a DOS command recall and editing utility with a nice touch - the ability to
  127. recall a previous DOS command line without scrolling back through them all by
  128. entering the first few letters and pressing Ctrl-L.  History is interesting in
  129. that most of the command and editing function keys are also executable as
  130. control key combinations, for those who don't like to pick up their hands from
  131. the keyboard.  Another interesting feature is the History's ability to search
  132. the command buffer for a line that matches the first few characters entered.
  133. (res:5.5k)
  134.  
  135. LogOut 1.71
  136.    Messer, Greg
  137.    $0
  138. is a 1k TSR that will send keystrokes to the keyboard after a specified period
  139. of system inactivity has passed. The result is the same as if you manually typed
  140. the keystrokes. You may specify that "system inactivity" be determined by
  141. monitoring any combination of the keyboard, disk, printer or screen.
  142.  
  143. LogOut could be used to save work, close files, exit a program, log off a
  144. network, etc, when a system is not used for a period of time. Up to 127
  145. keystrokes can be stored in a file for passing to the keyboard.
  146.  
  147. Recall 2.1
  148.    g.r.a.m.  Associates
  149.    $?
  150. permits the user to retrieve any one of up to 50 unique DOS commands
  151. previously issued by the user. Once retrieved, the command may be executed as
  152. is or modified by the user via the normal DOS line editing keys.
  153.  
  154. Show (SHOW-DT)
  155.    Toedt, D. C.
  156.    $0
  157. is a batch file that allows beginning users to easily execute many common DOS
  158. commands without having to remember the syntax.
  159.  
  160. --------------------------------
  161. END OF SMALL PROGRAMS DISK #1346
  162. --------------------------------
  163.  
  164.  
  165. ----------------------------
  166. 12014 DOS Command Editors #2          Small Programs Disk
  167. ----------------------------
  168.  
  169. PC-Shell
  170.    is a command processor for IBM-PC's and compatibles that emulates some of
  171. the more desirable functions of the Berkeley UNIX* C-shell.  In addition, it
  172. implements PC-DOS versions of some of the common UNIX* commands such as ls,
  173. mv, cp, etc.  It also allows "history substitution" which saves retyping of
  174. long command lines.
  175.  
  176. It allows you to do things like re-execute the last command, re-execute the
  177. last command but redirect output to a file, or execute a new command with
  178. arguments from previous command lines. The last 20 commands are saved, and can
  179. be reviewed by typing the 'history' command.
  180.  
  181. Previous commands can be referred to by their number, or relative to the
  182. current command's number. Parameters from previous commands can be seperated
  183. out and used individually.
  184.  
  185. Recall 1.0 (R-CALL)
  186.    CompuTech
  187.    $33
  188. is a 10k TSR which will pop up a window to allow you to recall, edit and
  189. reexecute commands previously entered at the DOS prompt. Commands can also be
  190. marked for play-back at a specific date and time.
  191.  
  192. Stack 2.4
  193.    Bergl, Shane
  194.    $?
  195. allows you to recall commands that were typed in DOS and to edit the DOS
  196. command line using the cursor keys.  While there are several similar utilities
  197. around, this one lets you view a list of the commands that are in the stack
  198. and assign them to function keys.
  199.  
  200. Toddy 5.11
  201.    Tauck, Eric
  202.    $10
  203. is a 2k TSR utility that enhances the built-in DOS line editing and provides a
  204. command scroll-back, similar to CED and the old DOS-EDIT. Other features
  205. include chained commands and macros. Macros and the command history may be
  206. saved and loaded from a file. DOS editing keys are supported, and much more.
  207.  
  208. Viper 3.11 (VIPERBF)
  209.   Freshour Software
  210.   $20
  211. is a DOS command line editor. It remembers keystrokes typed in at the DOS
  212. prompt and provides a visual window to view, edit and select previous DOS
  213. commands for re-execution.
  214.  
  215. Other features include mouse support, trashcan file deletion, function key
  216. assignments, digital battery watch for portable computers, high memory
  217. management compatibility and more.
  218.  
  219. ---------------------------------
  220. END OF SMALL PROGRAMS DISK #12014
  221. ---------------------------------
  222.  
  223.  
  224. Anarkey
  225.    Calwas, Steven
  226.    $34
  227.    #1827
  228. is a command-line editor that will significantly reduce the number of
  229. keystrokes made when entering DOS commands. Features include retrieval of
  230. previous DOS commands, multiple commands per line, a 255-character command
  231. line, environment editing, and support for LIM EMS memory. Other features
  232. include pop-up windows to retrieve past commands, complete filenames, edit
  233. environment variables, or display program help; full support for enhanced
  234. keyboards; special support for Windows 3.0 in 386 Enhanced mode; and mouse
  235. support.
  236.  
  237.  
  238. -------------------------------
  239. 0276 DOS Access and Environment          Small Programs Disk
  240. -------------------------------
  241.  
  242. 0276 DOS Access
  243. ---------------
  244. ED 3.0 (ED-SG)
  245.    Genusa, Stephen V.
  246.    $20
  247. is a very handy way to edit the DOS environment (where you can easily modify
  248. your DOS path, for example), your CONFIG.SYS file and AUTOEXEC.BAT file.  It
  249. also reports some basic system information such as memory installed (standard
  250. ram, extended & EMS), ports installed, and more.
  251.  
  252. HotDOS
  253.    Best, Robert
  254.    $20
  255. allows any currently executing program to be temporarily suspended so that a
  256. second copy of COMMAND.COM can be loaded and run in the background.
  257.  
  258. ShRoom 2.0a
  259.    Augustine, Davis
  260.    $25
  261. is a utility that gives you more room when Shelling to DOS from an application.
  262. It works by swapping the application to disk, freeing up all but 6k of memory.
  263. When you Exit the Shell, it automatically swaps your application back again.
  264.  
  265. SWAP 1.2 (SWAP-NM)
  266.    Mak, Nico & Mansfield Software Group
  267.    $0
  268. frees up DOS RAM when you have shelled to DOS from some program by swapping
  269. the memory the program is using to EMS, extended memory or a hard disk. For
  270. example, if you are programming in an editor and want to shell to DOS to
  271. compile, you may find that the editor is taking up too much DOS RAM to allow
  272. the compiler to run. All you have to do is run SWAP and the editor's area of
  273. DOS RAM will be swapped out, allowing the compiler access to nearly all of DOS
  274. RAM. When you quit the second program, the first program is swapped back into
  275. memory.
  276.  
  277. TST
  278.    Microsystems Software, Inc.
  279.    $10
  280. is a 6k (or less) TSR that lets you run any program while in another program,
  281. including those using graphics, a mouse or a coprocessor. It works by swapping
  282. the programs back and forth to disk, so a hard disk is recommended.
  283.  
  284. 0276 DOS Environment Utilities
  285. ------------------------------
  286. AddPath
  287.    Quillen, Ed
  288.    $0
  289. extends the DOS path string beyond 127 bytes. Requires DOS 3+.
  290.  
  291. Edenv 1.5
  292.    Bovee, Bill
  293.    $?
  294. allows modifying the contents of the DOS environment, such as the defined PATH.
  295.  
  296. EE2
  297.    Graham, Keith P.
  298.    $?
  299. is a DOS Environment Editor.  Since the "DOS environment" contains such goodies
  300. as where DOS should look for COMMAND.COM and the PATH and PROMPT configurations,
  301. none of which DOS allows you to edit, EE can really save you a lot of time and
  302. trouble.  With EE, all you have to enter is the new subdirectory name.
  303.  
  304. ENV-Read
  305.    displays strings in the environment.
  306.  
  307. EnvCount
  308.    displays the number of bytes used in the DOS Environment space.
  309.  
  310. EnvirCat 1.2
  311.    Gardner, Mark
  312.    $0
  313. allows concatenation of environment strings to form arbitrarily long strings.
  314. It is useful for generating long path statements beyond the 128 character
  315. maximum imposed by the DOS command line format.
  316.  
  317. ESET 1.2
  318.    Babulic, Mike
  319.    $0
  320. is a replacement for DOS's SET command.  ESET makes it easier to edit and enter
  321. variables in the environment.  Pascal source code is included.
  322.  
  323. NewPath
  324.    Lacobie, Kevin
  325.    $0
  326. lets you insert a subdirectory name into a PATH definition or delete one with
  327. one quick command.  While EE2 is more powerful overall, Newpath is quicker and
  328. easier to use for the tasks it performs.
  329.  
  330. Path Editor 2.0 (PED-RD)
  331.    Dittmeier, Ray
  332.    $7
  333. is an easy PATH editor for both experts and novices. Novices will like the
  334. full-screen mode in which all directory names in your PATH/drive are displayed
  335. for easy selection of a directory to delete/add. Experts will like the fast
  336. command-line option and the ability to specify multiple directory-PATH changes
  337. at once.
  338.  
  339. Post (POST-DS)
  340.    Sessions, D. C.
  341.    $0
  342. is a filter that will reversibly alter the DOS environment based on the contents
  343. of a file, which may be created by POST.  Especially useful in conjunction with
  344. tools which make heavy use of environment variables, in particular multilingual
  345. development environments.  A side-benefit is that POST accepts longer (1024
  346. byte) strings than does COMMAND.COM's SET command (128 bytes max).
  347.  
  348. ShowEnv
  349.    DOS System Utility
  350.    $0
  351. displays a list of your environment variables. Does not work under Windows.
  352.  
  353. Sit
  354.    Corry, Davidson
  355.    $0
  356. is a utility program for creating, modifying or deleting strings in the MASTER
  357. copy of the DOS environment. For example, if you run DESQview or run a program
  358. that shells to DOS, you are working in a secondary copy of the Command
  359. Processor. Issuing a PATH command at that point would not effect the master
  360. copy of COMMAND.COM. Issuing a SIT PATH command WILL effect the master copy
  361. and not the secondary one. It also adds several features to DOS's SET command.
  362.  
  363. Use
  364.    Haley, James
  365.    $0
  366. are two utility programs to add and remove directories from the path.  USE
  367. will add a directory to the path without disturbing the rest of the path, and
  368. UNUSE will remove a directory while leaving the others alone.  We have had
  369. similar utilities that did not work quite as well.  We have already added this
  370. pair to our Utility subdirectory.
  371.  
  372. XPath 1.0
  373.    Babulic, Mike
  374.    $0
  375. is a utility for changing the environment PATH variable.  Xpath works with DOS 2
  376. and up.  Pascal source included.
  377.  
  378. 0276 Emergency Help
  379. -------------------
  380. Abort
  381.    loads into memory, stays there until needed, and purports to get you out of
  382. some program lockups and back to DOS.  Whether programs like this work depends
  383. on what kind of lock-up you have.  If the system has crossed so far over into
  384. the Twilight Zone that it no longer is noticing the keyboard, your pounding on
  385. Abort's "hot keys" will do you no good.  However, there are many lockups Abort
  386. will save you from and it does not take much memory, so it's worth having
  387. there for when it does work.  (res.:  400 bytes)
  388.  
  389. CBoot
  390.    Graham, Keith P.
  391.    $?
  392. is a resident utility which lets you get out of some system lock-ups or out of
  393. programs that won't let you gracefully exit.
  394.  
  395. Last Resort 1.0 (LASTRES)
  396.    Sawada, Dr. Masaaki
  397.    $10
  398. gets you out of those system lock-ups which normally make you do a
  399. Ctrl-Alt-Del.  It cannot get you out of the hard lock-ups of the type which
  400. even ignore Ctrl-Alt-Del and make you turn the power off and back on (or hit
  401. Reset) to reboot.  We have had utilities of this type before which did not
  402. work well, but LastResort seems to work fine.  In cases where it might not be
  403. able to let you exit a program gracefully, it will also let you copy files
  404. from a RAM disk to other disks so that you don't lose them if you have to
  405. reboot.  This feature could be useful even apart from system lock-ups.
  406. Another useful side benefit is that LastResort traps the PrtSc key such that
  407. while you can still continue on and do a Print Screen, if pressing the key was
  408. an accident and you do not have a printer hooked up, it will let you escape
  409. without hanging the system.
  410.  
  411. Luther Cross, Kissimmee, FL: "When I type LASTRESO I get the help list, when I
  412. type LASTRESO.RUN I get then message "Bad command or filename".
  413.  
  414. PsL: You should just type LASTRESO RUN with a space between the words. By
  415. putting a period there, DOS thinks you are trying to execute a file with the
  416. extension of ".RUN".
  417.  
  418. Resq 3.2 (RESQ32) 09-93 CD
  419.    Yarus, Mike
  420.    $10
  421. is a utility which allows recovery of text otherwise lost in the computer.  RESQ
  422. saves buffered text, left in your computer's RAM before it was written to disk.
  423. If you've ever lost hard-won text due to a word-processing glitch, or forgotten
  424. to save that text file you just downloaded, or had to use the fire exit while
  425. testing a new program, or given the wrong answer to "Abandon current version?",
  426. you can use RESQ.
  427.  
  428. Safari
  429.    Hummel, Robert L.
  430.    $0
  431. keeps you from crashing out of a program by intercepting DOS error messages such
  432. as "Abort, Retry, Ignore" and handling them more genteelly.  Tested in PC-DOS
  433. 2.0 to 3.31.  (res:3k)
  434.  
  435. Spray
  436.    Angel, Dave
  437.    $0
  438. is designed to let you capture the contents of memory to a disk file.  One
  439. purpose of such a utility would be to salvage text that you were entering into
  440. a text editor which, for example, you quit without saving.  Assembler source
  441. is included.
  442.  
  443. Watchdog 1.0 (WATCHDO)
  444.    Sykes, Ken
  445.    $0
  446. watches PS/2 Model 50-and-up computers for system lockups and returns control
  447. to the keyboard when one occurs.  This allows you to do a warm reboot
  448. (Ctrl-Alt-Del) rather than having to power the machine off and on.  Assembler
  449. source code is provided.
  450.  
  451. --------------------------------
  452. END OF SMALL PROGRAMS DISK #0276
  453. --------------------------------
  454.  
  455.  
  456. -------------------------------
  457. 1945 DOS Command Line Utilities          Small Programs Disk
  458. -------------------------------
  459.  
  460. Execute 1.5
  461.    MAH Software Services
  462.    $10
  463. allows you to execute multiple commands from one DOS command line. Our first
  464. reaction was that this was something that could be easily duplicated with
  465. batch files or CED synonyms, but after some effort, we had to concede that
  466. Execute provides the most efficient means of executing multiple
  467. commands/programs on the fly.
  468.  
  469. It will run up to 50 internal or external DOS commands, programs, or batch
  470. files unattended one right after another. You may also specify a certain
  471. amount of time to lapse before the programs begin executing, and you can elect
  472. to be prompted before each command/program is executed.
  473.  
  474. Feed
  475.    is used to feed MS/PCDOS text files into a filtering pipeline.
  476.  
  477. FileC
  478.    Morearty, Mike
  479.    $?
  480. provides filename completion similar to that done by some versions of the Unix
  481. C Shell (also called "Tenex-style" completion).  The purpose of filename
  482. completion is so that the user doesn't have to type in long filenames when the
  483. first few characters would be enough to distinguish a filename from all other
  484. files in the directory.
  485.  
  486. Fly
  487.    Halsall, Bob
  488.    $?
  489. lets you execute several commands from the DOS command line with one entry.
  490. It does this by creating a temporary batch file "on the fly" to execute the
  491. commands and deletes it when done.
  492.  
  493. Launcher 2.21 (LAUNCHR)
  494.    Steenburgh, Chuck
  495.    $0
  496. allows you to quickly start application programs by bypassing the opening/file
  497. selection screen. It lets you select from a list of data files, then starts the
  498. application with the selected data file preloaded. It works with any application
  499. that accepts file names on the command line such as WordPerfect, WordStar,
  500. Quattro Pro, and others. Data files are sorted alphabetically, and up to 127
  501. menu color combinations may be used.
  502.  
  503. No
  504.    lets you exclude a program from an operation that uses wildcards.  For
  505. example, if you wanted to list all the files on this disk other than those
  506. that have an ".EXE" extension, you could say NO *.EXE DIR *.* /W.
  507.  
  508. PramJam (PJ)
  509.    a program that lets you pass parameters to programs that normally do not
  510. accept parameters from the DOS command line.  PJ works by creating a loader
  511. program for each program that you want to call with the parameters you want to
  512. pass to the program.  Other utilities in the library to accomplish the same
  513. task, but in a more flexible and less initially complicated manner, are
  514. STACKEY and KBSTAK.  PJ is presented here for times when these other programs
  515. don't do the job.
  516.  
  517. Rep
  518.    Knowledge Based Solutions, Inc.
  519.    $?
  520. is a prefix that allows DOS commands to be repeated.  Dummy parameters can be
  521. defined on the DOS command line and replaced according to the contents of the
  522. standard input file (STDIN, see DOS manual, pg 10-4 to 10-7).  The STDIN may
  523. be entered via the keyboard "redirected" from a data file, or "piped" from
  524. another command.  A facility is provided which allows STDIN and STDOUT to be
  525. redirected for the DOS command also.
  526.  
  527. Wild
  528.    Lazo, Charles III
  529.    $0
  530. lets you use wild card parameters with programs that normally do not allow
  531. wild cards.
  532.  
  533. Recall 2.2 (RCALL)
  534.    Patri-Soft ASP
  535.    $15
  536. is a file selection aid. It will scan your directory and provide you with a
  537. list of all files sorted in descending date order (newest to oldest). When you
  538. locate the file you wish to process, the program will either exit and spawn
  539. the desired application, invoke the desired application as a sub-task, or
  540. generate a batch file.
  541.  
  542. Use 1.1 (USE-LH)
  543.    LAN Helpers
  544.    $10
  545. lets you pass multiple file names to a program or batch file. It also has a NOT
  546. parameter. For example: to backup all files except *.BAK and *.OLD, you would
  547. type USE NOT *.BAK *.OLD ; BACKUP C:\*.* A: /S
  548.  
  549. Xstream
  550.    Pharis, Mark
  551.    $0
  552. executes a program on each member of a list of file names.  This program
  553. receives a list of filespecs either by way of expanding the wild card
  554. parameters given by the user on the command line, or by way of a pipe from
  555. another program.  It then executes whatever program the user specified on the
  556. command line, using the stream of file specifications as parameters to the
  557. executable program.  `C' source included.
  558.  
  559.  
  560. 1945 CHKDSK Replacements
  561. ------------------------
  562. Ckfrag
  563.    Randolph, Donald
  564.    $0
  565. is a hard disk defragmentation aid. It executes CHKDSK *.* against all the
  566. directories of a volume. It lists all fragmented files and sets the DOS
  567. errorlevel to the count of files (or blocks) involved. Turbo Pascal source
  568. code is included.
  569.  
  570. DFall
  571.    Wallace, Jack
  572.    $0
  573. displays the amount of disk space for multiple drives or partitions, as well
  574. as total and free DOS RAM memory. `C' and assembler source code are included.
  575.  
  576. Dstats 3
  577.    Lazo, Charles III
  578.    $0
  579. provides disk space information whose output listing can be user-designed.  It
  580. is smaller and faster than CHKDSK.
  581.  
  582. Free 1.1
  583.    Perkel, Marc
  584.    $0
  585. shows free disk space in absolute amounts and percentage, DOS memory, and EMS
  586. memory.  It is much faster than using CHKDSK.
  587.  
  588. GrafDisk (GRAFDSK)
  589.    OSCS Software Development, Inc.
  590.    $0
  591. reports free space on drives using a very attractive graphical interface.
  592.  
  593. Memsum2
  594.    Richmond, Jerry
  595.    $?
  596. reports how much memory is being used and is available for use.  Faster than
  597. CHKDSK.
  598.  
  599. Newchk
  600.    Meier, Brian
  601.    $0
  602. is a CHKDSK replacement which graphically displays disk usage with a 3-D bar
  603. graph and cylinder.  EGA required.
  604.  
  605. PCstat
  606.    Woeger, Robert
  607.    $?
  608. shows you disk space and memory statistics similar to CHKDSK, but much more
  609. quickly on a hard disk. For example, CHKDSK on a 30meg hard disk took over 25
  610. seconds while PCSTAT took as little as half a second. The differences are
  611. negligible on floppies. The author is no longer at the address provided in the
  612. documentation.
  613.  
  614. --------------------------------
  615. END OF SMALL PROGRAMS DISK #1945
  616. --------------------------------
  617.  
  618.  
  619. -------------------------
  620. 2462 DOS Utilities, Other          Small Programs Disk
  621. -------------------------
  622.  
  623. Config
  624.    RSE Incorporated
  625.    $0
  626. allows you to easily change the hot keys and colors of those utilities that do
  627. not have configuration programs.
  628.  
  629. DT
  630.    Woodward, Woody
  631.    $0
  632. is just a little utility that shows the system date and time, which can also
  633. be redirected to a file.
  634.  
  635. ETime 1.04m
  636.    Kerber, George
  637.    $5
  638. is a non-memory-resident timer for DOS. It stores the time in a file with a
  639. name specified on the command line and the second time you run it with the
  640. same name, it calculates and displays the elapsed time. You can specify as
  641. many different names as you wish, allowing you to time multiple events at
  642. once. A hard disk is recommended.
  643.  
  644. FixColor
  645.    is a patch to get COMMAND.COM to set your choice of screen color on
  646. startup. Information is given for all versions of DOS from 2.0 to 3.3.
  647.  
  648. Incr 1.03m
  649.    Kerber, George
  650.    $5
  651. is a simple, but useful utility for maintaining one or more counters. It can
  652. be used to keep track of how many times a program has been run or a computer
  653. booted.
  654.  
  655. INT(ernal) 1.0 (INTERNL)
  656.    Masaki, David
  657.    $0
  658. modifies COMMAND.COM to disable, restore, and rename internal DOS commands such
  659. as DEL, DIR, ECHO, CLS, CD, DATE, TIME, PROMPT, PATH, VOL, etc. This could be
  660. done with a file editor such as Norton's Utilities or PC-Zap (U1-05: 0283), but
  661. INT is much more convenient.
  662.  
  663. An example of how INT can be used is to disable DEL and rename a verify-delete
  664. utility like DLT to DEL. Then whenever you (or someone using your machine) types
  665. DEL *.EXE you get a verify-delete instead of having all your EXE files disappear
  666. without warning.
  667.  
  668. MoreHandles 2.0 (MOREHAN)
  669.    Computer Tyme ASP
  670.    $28
  671. is a 9k TSR which allows you to open more than 20 file handles in a single DOS
  672. program.
  673.  
  674. Nosy Prompter (NP2)
  675.    Nelson, Russell
  676.    $0
  677. loads into memory and thereafter warns you any time you have shelled to DOS
  678. from some program. NP warns you by adding the names of any shelled programs to
  679. the end of your DOS prompt. We were ready to add NP to our AUTOEXEC.BAT as
  680. soon as we saw it. Too many times have we shelled to DOS, forgotten that we
  681. had done so, and then forgot to go back and save our work or tried to load
  682. another program and run out of memory. Asssembler source code is included.
  683. Requires DOS 3+. (res:5k)
  684.  
  685. NoTime 0.1
  686.    Sawada, Dr. Masaaki
  687.    $10
  688. prevents people from using your computer facilities (keyboard, diskette,
  689. video, serial port and printer port) at specified times to prevent
  690. unauthorized tampering.  (res:3k)
  691.  
  692. QT
  693.    tells the time is a casual way: "It's about twenty to four."
  694.  
  695. RamMap 1.0
  696.    Perkel, Marc
  697.    $0
  698. displays what is in memory and can free up some minor amounts of wasted
  699. memory.
  700.  
  701. Share
  702.    RainTree Computer Systems
  703.    $0
  704. is a text file describing why you need SHARE with DOS 4.01 and the risks
  705. that you run by not using it.
  706.  
  707. SlowPC 1.0
  708.    Sawada, Masaaki
  709.    $0
  710. slows down a fast PC, primarily for playing older games.
  711.  
  712. Smart Prompt (SPMPT)
  713.    Lazo, Charles
  714.    $15
  715. is a 3k TSR that lets you add system information to your DOS prompt. Information
  716. available includes the amount of free DOS RAM, the time in a.m./p.m. format
  717. (rather than 24-hour format), the name of the program you have shelled out of,
  718. if any, and the particular AUTOEXEC.BAT and CONFIG.SYS pair that you booted
  719. with. DOS 3.0 or later is required.
  720.  
  721. Tad
  722.    sets system time and date on IBM AT's.
  723.  
  724. Tee
  725.    lets you view output that is being PIPE.  (See your DOS manual for info
  726. about PIPING.)
  727.  
  728. TextMODE 1.0
  729.    Microsystems Software, Inc.
  730.    $10
  731. solves the problem that most TSR's are text-based and will not pop up over a
  732. graphics-based program. You pop up TextMODE first and it saves the necessary
  733. graphics data and puts the screen into the text mode so that you can pop up a
  734. text-based TSR. TextMODE takes 7k of DOS RAM, 1.2k if you have expanded memory,
  735. 0k if you load it high.
  736.  
  737. Timer
  738.    times the execution of a program.
  739.  
  740. X 1.15 (X-JR)
  741.    Rubin, Jon
  742.    $10
  743. brings up a menu of up to 16 executable files in the current directory and lets
  744. you pick one with a single keypress. This would be good for a Games or Utlities
  745. directory, though the 16-file limit could be restrictive.
  746.  
  747. Xmore
  748.    is a replacement for DOS's MORE command.
  749.  
  750. YourTurn 1.0 (YOURTUR)
  751.    Sawada, Dr. Masaaki
  752.    $10
  753. restricts the access of files with certain file extensions for open, delete,
  754. rename, etc.  It produces a log file with the date, time, and a record number
  755. along with the name of the file accessed and the type of access which was
  756. allowed or denied and the password owner who accessed it.
  757.  
  758. --------------------------------
  759. END OF SMALL PROGRAMS DISK #2462
  760. --------------------------------
  761.  
  762.  
  763. -----------------------------
  764. 12350 DOS Utilities, Other #2          Small Programs Disk
  765. -----------------------------
  766.  
  767. 6th Sense 2.0 (6THSENS)
  768.    Tay-Jee Software ASP
  769.    $15
  770. is a set of utilities for DOS 6.0. It includes front ends for DIR and
  771. FORMAT. There is also a collection of DOSKEY macros included. It
  772. features menu-driven selection of command options, support for
  773. environment variables and more.
  774.  
  775. BestBat
  776.    Montaron, Daniel
  777.    $0
  778. is a set of DOS utilities: add a directory to an environment string (eg:
  779. change LIB=C: in the environment to LIB=C:;C:\TEMP), add a directory to
  780. the defined PATH, verified deletion of a list of files, and more.
  781.  
  782. DOS5Ed
  783.    Zachary, Allan
  784.    $0
  785. patches a copy of the DOS 5.0 editor so that it will list all the files in the
  786. current directory instead of just files with the TXT extension.
  787.  
  788. DOSTrace 2.0 (DOSTRCE)
  789.    Bridges, Steve
  790.    $25
  791. is a TSR that will trace DOS calls your programs are making. It will show you
  792. open files, what's in memory, and allow you to display and edit main memory. It
  793. also has a primitive memory protection option. Requires 286+. May be
  794. incompatible with 4DOS.
  795.  
  796. HelpCOM 1.2 (HC)
  797.    Friesen, Geoff
  798.    $0
  799. lets you add a help screen to any .COM program. You simply prepare a
  800. help screen in straight ASCII (text) and use HelpCOM to append it to the
  801. program file. Then when you type the program name followed by a question
  802. mark, the help screen will be displayed. This is great for those little
  803. utilities which don't offer a help screen of their own.
  804.  
  805. L. P. Thomason, Jacksonville, FL: "This is a good little program but
  806. there's a small problem. The help text of the program itself is in
  807. excess of 24 lines, and scrolls of the screen when used. I wrote the
  808. following batch file and now it works fine."
  809.  
  810.                              HELPSTOP.BAT
  811.                              @ ECHO OFFCLS
  812.                              %1 /? | MORE
  813.  
  814. Quick Run (QRUN)
  815.    Leithauser, David
  816.    $5
  817. displays a 5-column list of executable files in the current directory, and lets
  818. you run one by clicking on it with a mouse. Batch files are shown in red,
  819. COM/EXE files in green.
  820.  
  821. For some reason, if the screen gets full, you are asked to press the space bar
  822. and half the screen scrolls away before you get a chance to select a file.
  823. Normally, this will not enter into play.
  824.  
  825. SmartPrompt (SMARTP)
  826.    Gibson, Steve
  827.    $0
  828. is a TSR SmartDrive DOS prompt suspender. It helps prevent drive
  829. partition corruption in DOS 6.0 systems.
  830.  
  831. SYSLog 1.2
  832.    Solid Oak Software
  833.    $15
  834. is an 8k TSR that automatically keeps a log of all programs run, files copied,
  835. files deleted, files created, and files opened, as well as the date and time
  836. that each activity occurred.
  837.  
  838. ---------------------------------
  839. END OF SMALL PROGRAMS DISK #12350
  840. ---------------------------------
  841.  
  842.  
  843. --------------------------------
  844. 2006 Specific Computers, Speaker          Small Programs Disk
  845. --------------------------------
  846.  
  847. 2006 Speaker
  848. ------------
  849. Bell
  850.    changes the sound of the beep your PC makes when it is displeased with with
  851. your performance. Now it's more of a loving coo.
  852.  
  853. Bells 1.4
  854.    Sapphire Software
  855.    $?
  856. allows you to change the sound of the *beep* that your computer makes.  You can
  857. change it to a little song or a unique sound effect very easily with the BEEPINS
  858. program.  No musical or computer expertise is required. (res:1k)
  859.  
  860. BellsTD 1.5
  861.    Donnelly, Tom
  862.    $0
  863. replaces your computer's BEEP with a special sound effect or tune of up to
  864. nine notes.  It is easy to change the beep or tune.  TSR: 1k.
  865.  
  866. Fixbeep
  867.    Blaszczak, Mike
  868.    $?
  869. lets you change the frequency of the beep in DOS to a less piercing tone of your
  870. own choosing.
  871.  
  872. Silence
  873.    disables the speaker.
  874.  
  875. Silencr 2.1
  876.    Fallen, Dave
  877.    $0
  878. silences programs that insist on making a lot of loud, unwanted sounds.
  879. Unlike some utilities that work on a hardware level to silence the speaker,
  880. Silencer lets you silence one particular program without disabling the speaker
  881. for other programs.  It actually creates a new program file (leaving the
  882. original unchanged) in which any calls to the speaker (OUT 61,AL) are NOP'ed
  883. out. Basic source code is included.
  884.  
  885. StopIt
  886.    Moritz, Rowena
  887.    $0
  888. stops the speaker when some program has left it beeping ceaselessly.
  889.  
  890. Tran
  891.    Neely, Stephen
  892.    $0
  893. is a text-to-speech program.  It can read text files or take input from the
  894. keyboard, translate normal English spelling to phonemes, and sound out each
  895. phoneme through the speaker.  There are several options that allow you to adjust
  896. the timing and pitch to your machine, save the phoneme translations to a file,
  897. and more.  Frankly, we could not understand a word it said, but it might do
  898. better on other machines and the ability to save the phonemes could be useful
  899. for other applications.
  900.  
  901. VidVoice (VIDVOIC)
  902.    Graham, Keith P.
  903.    $0
  904. will echo letters to the speaker port.
  905.  
  906.  
  907. Specific Computers:
  908. ------------------
  909. 2006 AT
  910. -------
  911. CM
  912.    Graham, Keith P.
  913.    $0
  914. is a quick and dirty AT CMOS date and time utilities.
  915.  
  916. FixDsk 2.0
  917.    prevents disk errors when running at 8 mhz.
  918.  
  919. Fast-AT
  920.    is a text file that tells you how to change crystals and speed up an AT.
  921. (on disk #0279)
  922.  
  923. Num_Off
  924.    Arment, Homer
  925.    $?
  926. may be used from your autoexec.bat file to turn the num lock key off on your
  927. PC-AT.
  928.  
  929. ROMU
  930.    Graham, Keith P.
  931.    $0
  932. is an AT ROM disk type utility for ROM Burners.
  933.  
  934.  
  935. 2006 AT&T 6300
  936. --------------
  937. ATTclock (ATTCLOC)
  938.    is a resident alarm clock for the AT&T 6300 that will display the time in
  939. the corner of the screen and optionally wake you up for lunch and when it's
  940. time to go home.
  941.  
  942.  
  943. 2006 Compaq
  944. -----------
  945. Compaq
  946.    will tell you how to increase 64kb to 640kb on a Compaq computer
  947.  
  948. Config.286
  949.    tells how to put a Compaq-286 into the dual-monitor mode on bootup.
  950.  
  951. CPQ386
  952.    is a text file containing the results of various "benchmark" (performance
  953. timing) tests on the Compaq 386 computer.
  954.  
  955. DPU
  956.    allows you to set various options for the Compaq Deskpro (and presumably
  957. other Compaq's) from the DOS command line (and more usefully) from batch
  958. files. The options which can be set are CapsLock, NumLock, ScrollLock, Clock
  959. Speed (slow or fast) and Keyclick volume.
  960.  
  961. SpeedV and SpeedC
  962.    let you check the speed setting on a Compaq 286 and change the speed
  963. setting.
  964.  
  965. 2006 Toshiba
  966. ------------
  967. Readclk
  968.    Gordon, Guy
  969.    $?
  970. reads the BIOS date and time (INT 1Ah) and sets the DOS date and time.  It is
  971. used to set the system time to match that of an internal clock/calendar.
  972.  
  973. --------------------------------
  974. END OF SMALL PROGRAMS DISK #2006
  975. --------------------------------
  976.  
  977.  
  978. ------------------
  979. 0436 TSR Utilities          Small Programs Disk
  980. ------------------
  981.  
  982. "TSR" stands for "Terminate, Stay Resident". A TSR is a program that stays in
  983. memory once you load it and can be popped up or can perform some task while you
  984. are running other programs. The utilities on this disk are for working with
  985. TSR's.
  986.  
  987. ChkTSR 1.01
  988.    Dunford, Christopher J.
  989.    $0
  990. tells you whether or not a specific program is currently resident in memory.
  991. An errorlevel is returned for use in batch files.  CHKTSR may be useful in
  992. situations where a batch file or other process requires that certain programs,
  993. primarily TSRs, be resident (or not resident).  DOS 3.0 or later is required.
  994.  
  995. Files 1.01 (FILESJR)
  996.    Ritchey, J. P.
  997.    $0
  998. will, in conjunction with Quarterdeck's QEMM-386, allow more files in High
  999. Memory, freeing up more low memory for application use.
  1000.  
  1001. Fix 2.7
  1002.    Graham, Keith P.
  1003.    $0
  1004. reclaims wasted space used when memory resident programs are loaded by
  1005. returning their environment block to the memory pool. The amount of space
  1006. saved depends on the size of your environment and the number of TSR's you use.
  1007.  
  1008. HILoad
  1009.    Shannon, Larry
  1010.    $0
  1011. will load TSR's into what should be unused parts of memory. The documentation
  1012. has a very good explanation of how memory is used and what memory should be
  1013. available to you.
  1014.  
  1015. Instal
  1016.    lets you remove resident utilities from memory.
  1017.  
  1018. Memres 4.1
  1019.    Jordan, Ed
  1020.    $0
  1021. lets you remove resident programs from memory. MemRes will now display the
  1022. vector numbers which are being replaced from the backup copy of the table. In
  1023. addition, the name of the memory resident program will be displayed. Assembler
  1024. source code is included.
  1025.  
  1026. Min-Mem 2.0
  1027.    Biologic Company
  1028.    $39
  1029. is a 15k TSR that will free up memory used by a large TSR by swapping it to
  1030. your disk. For example, if you have a TSR that takes 120k, it can be swapped
  1031. to disk and all of its memory will be freed for other applications, except for
  1032. the 15k used by Min-Mem itself.
  1033.  
  1034. Overhead (OVRHDED)
  1035.    Ross, Ed
  1036.    $?
  1037. has the CPU execute a bunch of instructions (no I/O) and tells you how long it
  1038. took. The purpose is for you to see how much overhead your resident utilities
  1039. is adding to your processing time, so you run it once with all your usual
  1040. TSR's loaded and once without and compare the times. Testing on a Compaq 8086
  1041. with and without over 200k of TSR's was a real eye-opener. Rather than dumping
  1042. all of your TSR's cold turkey, we suggest that you just compromise by removing
  1043. them from memory (see Mark-Release) before running programs that are
  1044. CPU-intensive.
  1045.  
  1046. PMap 2.10
  1047.    Dunford, Christopher J.
  1048.    $0
  1049. displays memory usage statistics for both DOS RAM and EMS. We use this primarily
  1050. as a quick way to see what TSR's are in memory and how much space they take, as
  1051. well as to see if we have shelled to DOS from some program and forgotten about
  1052. it. Features allow you to display only DOS memory, display device driver info,
  1053. and display only expanded memory and show the segment address of the
  1054. environment. You can also specify which TSR names to look at by entering the
  1055. first letter of the name. For example, PMAP S* would give info about Sidekick
  1056. (assuming it is in memory). The maximum allowable number of files, buffers, and
  1057. FCBs is 255.
  1058.  
  1059. ResDel & Tablev
  1060.    Jordan, Ed
  1061.    $?
  1062. lets you remove resident utilities from memory. Resdel works a little
  1063. differently than the Mark/Release utilities already on the library in that the
  1064. latter will remove all TSR's back to the last Mark and Resdel will let you
  1065. strip out one at a time without having to "mark" each one first. It also
  1066. provides a means to remove all TSR's at once, but the procedure for creating
  1067. the necessary "vector table file" was not clear to us.
  1068.  
  1069. SeeMem 2.0
  1070.    Housh, Tedrick A. Jr.
  1071.    $0
  1072. will display information about all TSRs and the current use of DOS memory by
  1073. the operating system. This includes upper memory blocks, high memory area, XMS
  1074. extended memory and expanded memory. It makes full use of the new memory
  1075. facilities provided by DOS 5.0 and provides information similar to that
  1076. provided by the DOS utility MEM. Support is also provided for DR-DOS 6.0 and
  1077. 4DOS 4.0.
  1078.  
  1079. Showmap 2.0
  1080.    Kuri, Carlos
  1081.    $10
  1082. is a pop-up utility that displays a map of memory similar to PMAP, except that
  1083. it does not show expanded memory. It does let you view the environment for any
  1084. block and to page through memory and the PSP. (res:9k)
  1085.  
  1086. ShowTSRs
  1087.    Gilbert, Tom
  1088. displays the map of memory blocks and interrupts, including EMS memory. The
  1089. display can be scrolled up and down for easier viewing. The 65k assembler
  1090. source code is included.
  1091.  
  1092. TSRCOM 3.4 ("Mark/Release") (MARKREL)
  1093.    Kokkonen, Kim
  1094.    $0
  1095. is a group of programs useful in managing memory-resident utilities.  TSR
  1096. stands for "Terminate and Stay Resident".  MARK.COM and RELEASE.COM are used
  1097. to remove memory-resident programs from memory, without the usual problems of
  1098. creating holes in memory or leaving interrupts dangling.  DISABLE will disable
  1099. a TSR without actually removing it from memory.  EATMEM helps solve system
  1100. problems cause by the specific location of memory of a TSR.  MAPMEM shows you
  1101. where TSR's reside in memory and how much memory each one consumes.  MARKNET
  1102. is like MARK, but saves a more complete picture of system status.  RELNET
  1103. removes TSR's marked with MARKNET.  DEVICE shows what device drivers are
  1104. loaded. DOS 5 compatibility is provided, and will work with programs loaded
  1105. into high memory.
  1106.  
  1107. --------------------------------
  1108. END OF SMALL PROGRAMS DISK #0436
  1109. --------------------------------
  1110.  
  1111.  
  1112. ----------------------
  1113. 12165 TSR Utilities #2          Small Programs Disk
  1114. ----------------------
  1115.  
  1116. GrowP 2.0 (GROWP) 09-93 CD
  1117.    Tessler's Nifty Tools
  1118.    $0
  1119. is a 2k TSR which visually indicates in the DOS prompt how many copies
  1120. of COMMAND.COM are invoked in the current chain. It is easy to shell to
  1121. DOS from a program and later forget that you are shelled. With GrowP,
  1122. you won't forget.
  1123.  
  1124. MarxPop
  1125.    Marc Perkel
  1126.    $25
  1127. lets you turn any program into a pop-up TSR loaded into high memory. Up
  1128. to 10 different programs can be loaded. Unlike Fast Load which only
  1129. stores programs in high memory for running from the DOS command line,
  1130. MarxPop can bring up a program by pressing a hot key.
  1131.  
  1132. PopUp 1.12
  1133.    RC Software
  1134.    $29
  1135. turns any program into a TSR using only 6K of DOS RAM. It supports swapping to
  1136. EMS, XMS, and disk, and can pop up when you are at the DOS prompt and pop up
  1137. over 43-line EGA and 50-line VGA displays, in addition to the normal 25-line
  1138. mode.
  1139.  
  1140. WorkTSRs 3.1
  1141.    Tom Gilbert
  1142.    $0
  1143. lets you manage resident ("pop-up") utilities. This is a version of Kim
  1144. Kokkonen's Mark/Release set of utilities that has been rewritten in assembly
  1145. language. A unique feature allows menu selection of TSR's for installation or
  1146. update. Assembler source is included.
  1147.  
  1148. Wrapper 1.0
  1149.   Gardner, Philip B.
  1150.   $25
  1151. lets you load programs (including TSRs) in CONFIG.SYS, even though they are
  1152. not device drivers themselves. For example, a programmer could load a
  1153. debugger in CONFIG.SYS and trace/debug the initialization of device drivers
  1154. they have written. Or you could load a TSR disk cache before Stacker in
  1155. CONFIG.SYS in order to get better performance.
  1156.  
  1157. ---------------------------------
  1158. END OF SMALL PROGRAMS DISK #12165
  1159. ---------------------------------
  1160.  
  1161.  
  1162. 4DOS
  1163.    J. P. Software ASP
  1164.    $69
  1165.    #7589/1890 [2 disks]
  1166. is a complete replacement for COMMAND.COM, the command processor that comes
  1167. with DOS. 4DOS is a much more powerful command processor, offering more
  1168. powerful versions of typical DOS commands and adding numerous new commands.
  1169. 4DOS also has on-line help for its commands, and "normal" command line
  1170. editing.
  1171.  
  1172. There is a complete ASCII table, support for non-English characters in
  1173. filenames, environment variables, and aliases. Batch files can be nested six
  1174. levels deep. Environment variables return the day of the week, screen rows,
  1175. and screen columns.
  1176.  
  1177. If you seldom work in DOS, none of this may mean much to you, but anyone who
  1178. tries much pd/shareware software probably spends enough time to make the power
  1179. and flexibility of 4DOS a worthwhile addition to your system. It can load its
  1180. resident portion and/or the master environment into DOS 5 Upper Memory Blocks,
  1181. and supports swapping to XMS extended memory.
  1182.  
  1183. Network support is included, and enhanced wildcards let you specify lists or
  1184. ranges of characters to include or exclude. A command history can be viewed
  1185. and executed from a pop-up window as well as at the command line. The program
  1186. is compatible with DESQview, DR-DOS, and Windows 3.0. A hard disk is required.
  1187.  
  1188.  
  1189. 4Zip
  1190.    Weinstein, Iram J. ASP
  1191.    $15
  1192.    #7589/3857
  1193. is a utility for 4DOS that saves file descriptions along with the files as they
  1194. are compressed. It is used with the file compression program PKZIP (#1705).
  1195.  
  1196.  
  1197. ------------------------
  1198. 7589/3276 4DOS Utilities          Small Programs Disk
  1199. ------------------------
  1200.  
  1201. 4Edit 1.1
  1202.    Weinstein, Iram J. ASP
  1203.    $15
  1204. provides a full-screen editor for creating and editing 4DOS description files.
  1205.  
  1206. 4Files 3.01
  1207.    Hand-Crafted Software ASP
  1208.    $20
  1209. is a multi-purpose file management tool. Features include file annotation;
  1210. file browsing and editing, file finding and archive listing; and directory
  1211. tree navigation. File notes of up to 40-characters can be created and edited
  1212. in the 4DOS format. Editing features includ cut-paste, left/right
  1213. justification, cursor controls and more. Sorting by file extension, size,
  1214. date/time, and file-note are available on-the-fly or via command line
  1215. switches. Requires CGA or better video.
  1216.  
  1217. CED24DOS 0.90 (CED2-4D)
  1218.    Huras, David
  1219.    $5
  1220. reads in a file of CED synonyms and converts them into 4DOS aliases.
  1221.  
  1222. --------------------------------
  1223. END OF SMALL PROGRAMS DISK #3276
  1224. --------------------------------
  1225.  
  1226.  
  1227. DiZk4D
  1228.    Unicorn Software Limited ASP
  1229.    $25
  1230.    #3125
  1231. is a disk cataloger and labeling program for use with 4DOS. With this program,
  1232. you can read a floppy into memory and save data; enter a 21 character title,
  1233. four-digit Disk number, three-character code and two lines of remarks up to 65
  1234. characters each; print labels, listings, and catalogs; perform searches on any
  1235. filename, description, date, title, disk number, code, or remarks; use auto
  1236. numbering; create a dBase compatible data file; disk sleeve printing and more.
  1237.  
  1238.  
  1239. DiZkND
  1240.    Unicorn Software Limited ASP
  1241.    $29
  1242.    #3762
  1243. is for cataloging and labeling floppy disks under NDOS. It lets you enter a
  1244. 21-character title, four-digit disk number, three-character code and two lines
  1245. of remarks up to 65 characters each. The program can also print a variety of
  1246. disk labels that include file names, or file names and descriptions. 5.25" disk
  1247. sleeves can also be printed. Other features include Extended and Expanded memory
  1248. support, auto-numbering, search capabilities, and much more.
  1249.  
  1250.  
  1251. On-Call
  1252.    Forest Hill Software, Inc
  1253.    $25-$55
  1254.    #7064/1184
  1255. manages memory-resident (TSR/pop-up) programs. By swapping the programs to a
  1256. disk drive until they are needed, On-Call can limit the memory required by all
  1257. of your TSR's to that required of the largest TSR plus the 40k that On-Call
  1258. uses itself.
  1259.  
  1260. For example, if your largest TSR is 100k and you would like to use four
  1261. smaller TSR's that total another 200k, On-Call will swap the smaller ones in
  1262. and out of memory until needed, using just 100k for the largest and 40k for
  1263. itself. This swapping only works if the TSR's are the kind that only do
  1264. something when you pop them up, such as Sidekick, not the kind that must
  1265. always be active to monitor the system, such as a keyboard macro program or a
  1266. screen blanker.
  1267.  
  1268.  
  1269. ALT
  1270.    Instinct Software
  1271.    $73
  1272.    #7064/1665 [2 disks]
  1273. is a very powerful, professional quality, memory-resident system that includes
  1274. task swapping (being able to leave one program active while swapping into
  1275. another partition to run another program). In addition, it includes excellent
  1276. versions of the standard desktop type of programs: rolodex, file manager, a
  1277. word processor that will edit any size file, three types of calculators, an
  1278. appointment calendar, cut and paste, a screen clock with hourly chimes,
  1279. keyboard macros and more. The program supports DOS 4.0, task switching with
  1280. EGA and VGA graphics screens, and a mouse.
  1281.  
  1282. A few features have been limited in the "shareware" version: only two swapping
  1283. partitions are allowed, only one of the three types of calculators can be
  1284. used, the rolodex is limited to 20 entries, and some other minor limitations
  1285. exist. Normally, we do not accept crippled programs, but even with its
  1286. limitations, the functionality of ALT is significant. A hard disk and 70K are
  1287. required. DOS 5.0 is supported.
  1288.  
  1289.  
  1290. Back & Forth Professional
  1291.    Progressive Solutions, Inc.
  1292.    $70
  1293.    #7568/2373 [5 disks]
  1294. is a program-swapping utility that should make you think twice about getting
  1295. Software Carousel. B&F will let you load up to 20 different programs
  1296. (spreadsheets, word processors, DOS windows, whatever) at once and move around
  1297. them with the press of a key.
  1298.  
  1299. Setup from start to finish is extremely easy - much easier than Software
  1300. Carousel. It easily passed our usual test of setting up the program and using
  1301. it before looking at the docs. TSR partitions are easy to setup by defining a
  1302. program with the "STAY AT DOS" option.
  1303.  
  1304. B&F supports swapping of programs to hard disk, RAM disks or expanded memory
  1305. and takes only 12-15k of memory itself, and can even be reduced to as little
  1306. as 1K. It supports a mouse, CGA and VGA screens, most EGA graphics screens,
  1307. and Ultravision. It also supports ANARKEY, Ventura, PCED 2.0, and Vstack. A
  1308. cut/paste module is available with an auto dialer, as well as a background
  1309. clock. Support for running programs on networks is also included. Support is
  1310. provided for all known extended text modes of various EGA/VGA boards, and for
  1311. most VGA chipsets up to 1024x768. A TSR is included to handle EGA screen
  1312. problems. Additional features include support for DOS 5's DOSKEY and CED
  1313. command line; a multifunction RPN calculator and a simple tape calculator; a
  1314. Desktop editor, Rolodex, and appointment book/calendar/schedular; graphic
  1315. screen blanker; support for DOS 5's UMB style memory; support for
  1316. UltraVision's UL (underline) utility; and much more.
  1317.  
  1318.  
  1319. DVAP Menu (DESQview Application Program Menu)
  1320.    Stewart, Gregory
  1321.    $0
  1322.    #1828
  1323. provides nested menu support for the DESQview environment.  In other words, it
  1324. lets you open windows that are not listed on the main DESQview ("DV") window
  1325. list.  (See Retail Products for DV.)  DVap Menu is invoked from the DESQview
  1326. Open Window menu, reads a menu definition file and displays a program
  1327. selection menu which looks very much like the DESQview Open Window menu.
  1328.  
  1329. Programs are started from this panel by selecting them via mouse or keyboard
  1330. in the same manner as from the Open Window menu; otherwise, windows are
  1331. treated the same as any other DV window (eg: windows may be zoomed, moved and
  1332. closed from the DV window).
  1333.  
  1334.  
  1335. Swap Utilities
  1336.    Innovative Data Concepts ASP
  1337.    $25 each
  1338.    #1797
  1339. reduces the RAM needed by specific TSR's to only about 10k. Offers 6 programs to
  1340. reduce RAM need by SideKick, SK+, Tornado, Metro, MemoryMate, PCTools Shell,
  1341. PCTools Desktop, PC Tool Deluxe, and the Norton Guides and SwapDOS. SwapDOS lets
  1342. you run a second program without having to save and quit the first one. The
  1343. memory used by the first one is swapped to expanded or extended memory or to a
  1344. disk file, thus freeing up DOS RAM for the second program to use. An example
  1345. would be to swap out of a text editor to run a compiler. Requires DOS 3+.
  1346. DesqView is supported along with support for EGA/VGA cards.
  1347.  
  1348.  
  1349. Tessler's Nifty Tools 3.4 [TNT34]
  1350.    Tessler
  1351.    $19 ea.
  1352.    #20325/MegaDisk Only (12-93 CD)
  1353. is a collection of over 25 useful programs that control printers,
  1354. modems, screen output, prompts, ports, floppy drives, sound cards and
  1355. more.
  1356.  
  1357.  
  1358. TSR-Select
  1359.    Quadrant Computer Systems
  1360.    $45
  1361.    #3953
  1362. lets you run any program from within any non-graphic program. When popped up, it
  1363. displays a menu of up to 15 different programs which you can run. It works on
  1364. networks too. TSR-Select uses just 8K of DOS RAM.
  1365.  
  1366.  
  1367. VMiX 386 2.90 [VMIX]
  1368.    Borras, J. Anthony ASP
  1369.    $59
  1370.    #1206 (12-93 CD)
  1371. is a multi-tasking system for advanced users. It will allow up to four tasks
  1372. to be executing at the same time. It is ideal for hooking multiple terminals
  1373. up to a single computer. Other features include protected mode memory, task
  1374. management, virtual devices to DOS, support for DOS 5.O, interrupt driven
  1375. services to the COMM ports, support for 115.2 Kbaud, a utility for linking two
  1376. VMiX hosts serially with a virtual terminal session, support for programs that
  1377. make direct video writes at remote COMM port terminals and support for
  1378. HIMEM.SYS and other resident XMS drivers.
  1379.  
  1380. Multitasking can be controlled completely from the keyboard via hotkeys.
  1381. Remote log-in passwords and scripts are supported. Three other utilities are
  1382. provided, including a remote utility for linking two or more VMiX system, an
  1383. upper memory TSR loader for 386 computers, and a setup utility.
  1384.  
  1385.  
  1386. Format Converters
  1387.    Sydex
  1388.    $?
  1389.    #7262/2545
  1390. This disk contains utilities for reading and writing disks from other systems
  1391. that are not DOS compatible. Included are utilities for the Apricot, the DEC
  1392. Rainbow, the Eagle, and the HP 150. Also on this disk is:
  1393.  
  1394. RWAll
  1395.    ZIS Software
  1396.    $15
  1397.    #7262/2545
  1398. will allow you to read and write Amiga and Atari ST floppys with your PC.
  1399.  
  1400.  
  1401. Z80MU
  1402.    Computerwise Consulting Services
  1403.    $150
  1404.    #7262/482
  1405. allows you to run most CP/M 2.2 and Z80 software on PC's.
  1406.  
  1407.  
  1408. 22Disk 1.39
  1409.    Guzis, C. P. and Sydex
  1410.    $28
  1411.    #7262/1404
  1412. is a media conversion utility for converting data from CP/M disk formats to
  1413. DOS or vice versa.  The 22DISK disk conversion package offers user-defined
  1414. CP/M formats in addition to the standard support for single-, double-, and
  1415. quad-density formats. It also features custom keyboard mapping.
  1416.  
  1417. Also included is a Z-80/8080 CP/M 2.2 emulator, 22NICE, which will emulate
  1418. 8080/8085/Z-80 processors with or without NEC V-series chip installed, provide
  1419. terminal emulation for most common CP/M machines, support CP/M user number to
  1420. DOS subdirectory translation, allow use of DOS pipes and utilities with CP/M
  1421. programs, support a complete set of BDOS and BIOS function interfaces,
  1422. including direct disk read/write, and is invisible to the user.
  1423.  
  1424. Warren Norwood, Weatherford, TX: "You need to include a warning that this
  1425. software will not convert CP/M-80 disks used on Apple II's with CP/M cards."
  1426.  
  1427.  
  1428. ]]]]]
  1429.  
  1430.